home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Offline / Migrate / Port Windows IPC apps to Linux, Part 1 Processes and threads_files / forumwindow.js < prev    next >
Encoding:
JavaScript  |  2005-04-25  |  445 b   |  10 lines

  1. // developerWorks e-mail to a friend JavaScript
  2. // Adapted from Danny Goodman's
  3. // "JavaScript Bible, 3rd Edition" (www.dannyg.com)
  4. // Initialize global var for new window object
  5. // so it can be accessed by all functions on the page
  6. var forumWind
  7. // make the new window and put some stuff in it
  8. function forumWindow() {
  9.         forumWind = window.open(forumURL,"forumsubwindow","HEIGHT=500,WIDTH=765,resizable=yes,scrollbars")
  10. }